/******************************************************************************* * Copyright (c) 2000, 2013 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.ant.internal.ui.editor.text; import java.util.ArrayList; import java.util.Iterator; import org.eclipse.jface.text.reconciler.DirtyRegion; import org.eclipse.jface.text.reconciler.IReconcilingStrategy; import org.eclipse.jface.text.reconciler.MonoReconciler; public class NotifyingReconciler extends MonoReconciler { private ArrayList<IReconcilingParticipant> fReconcilingParticipants = new ArrayList<>(); /** * Constructor for NotifyingReconciler. * * @param strategy */ public NotifyingReconciler(IReconcilingStrategy strategy) { super(strategy, false); } /* * @see org.eclipse.jface.text.reconciler.AbstractReconciler#process(org.eclipse.jface.text.reconciler.DirtyRegion) */ @Override protected void process(DirtyRegion dirtyRegion) { super.process(dirtyRegion); notifyReconcilingParticipants(); } public void addReconcilingParticipant(IReconcilingParticipant participant) { fReconcilingParticipants.add(participant); } public void removeReconcilingParticipant(IReconcilingParticipant participant) { fReconcilingParticipants.remove(participant); } protected void notifyReconcilingParticipants() { Iterator<IReconcilingParticipant> i = new ArrayList<>(fReconcilingParticipants).iterator(); while (i.hasNext()) { i.next().reconciled(); } } /* * (non-Javadoc) * * @see org.eclipse.jface.text.reconciler.AbstractReconciler#initialProcess() */ @Override protected void initialProcess() { super.initialProcess(); notifyReconcilingParticipants(); } }